home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / The Duplicator / The Duplicator < prev   
Text File  |  2000-06-23  |  254b  |  13 lines

  1. tell application "Finder"
  2.     set x to 400
  3.     set y to 300
  4.     repeat 30 times
  5.         select folder "untitled folder"
  6.         duplicate selection to desktop
  7.         set target to {x, y}
  8.         set position of selection to target
  9.         set x to x + 2
  10.         set y to y + 2
  11.     end repeat
  12. end tell
  13.